home *** CD-ROM | disk | FTP | other *** search
/ Into His Marvelous Light / Into His Marvelous LIGHT.iso / lesson1.dxr / 00121_Script_Go Previous Button < prev    next >
Text File  |  2001-09-05  |  655b  |  31 lines

  1. -- DESCRIPTION --
  2.  
  3. on getBehaviorDescription me
  4.   return "¼
  5. GO PREVIOUS BUTTON"&RETURN&RETURN&"¼
  6. Moves the playback head to the previous marker ¼
  7. when the user clicks on the sprite."&RETURN&RETURN&"¼
  8. PERMITTED MEMBER TYPES:"&RETURN&"Graphic members"&RETURN&RETURN&"¼
  9. PARAMETERS: None"
  10. end getBehaviorDescription
  11.  
  12.  
  13.  
  14. on getBehaviorTooltip me
  15.   return "¼
  16. Use with graphic members."&RETURN&RETURN&"¼
  17. Moves the playback head to the"&RETURN&"¼
  18. previous marker on mouseUp."
  19. end getBehaviorTooltip
  20.  
  21.  
  22.  
  23. -- HISTORY --
  24.  
  25. -- 3 November 1998, written for the D7 Behaviors Palette by James Newton
  26.  
  27.  
  28.  
  29. on mouseUp me
  30.   go #previous
  31. end mouseUp